home *** CD-ROM | disk | FTP | other *** search
/ Nebula 1 / Nebula One.iso / Utilities / Other / mCD / Source / PrefsPanel.h < prev    next >
Encoding:
Text File  |  1994-03-06  |  646 b   |  29 lines

  1.  
  2. #import <appkit/appkit.h>
  3.  
  4. @interface PrefsPanel:Object
  5. {
  6.     id    thePrefs;        /* object in "main program" which knows all
  7.                        about the program's preferences (as opposed
  8.                    to this object, which knows all about the
  9.                    preferences *panel*).
  10.                 */
  11.     id  preferencePanel;
  12.     id    deviceMatrix;
  13.     id    curFirstDeviceText;
  14.     id  separateVolSwitch;
  15.     
  16. }
  17.  
  18. - showPrefsPanel:preferences_ID usingScsiList:scsiList_id;
  19.  
  20. - saveCurrentVolumes:sender;
  21. - saveWindowPositions:sender;
  22. - setCdromDrivePref:sender;
  23. - setSeparateVolumes:sender;
  24.  
  25. /* tag's of interest for objects in the preference panel */
  26. #define USE_FIRST_CDDRIVE_TAG -10
  27.  
  28. @end
  29.